home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- Sub AnimationButton_Click ()
- Animation.Show 1
- End Sub
-
- Sub Done_Click ()
- Video.Hide
- Controller.Show
- End Sub
-
- Sub Form_Load ()
- Movie.Command = "close"
- Movie.FileName = "avi\mmroad.avi"
- Movie.hWndDisplay = PressMe.hWnd
- Movie.Command = "open"
- End Sub
-
- Sub HotVideo_ObjMouseDown (X As Integer, Y As Integer, ObjId As Integer)
- If ObjId = 1 Then
- HotVideo.Play = False
- HotVideo.DataName = ""
- HotVideo.FileName = ""
- Video.Hide
- Controller.Show
- JumpTopic "Sites"
- End If
- End Sub
-
- Sub HotVideo_Play (Play As Integer)
- If Play = 0 Then
- HotVideo.Visible = False
- End If
- End Sub
-
- Sub PressMe_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
- Movie.Command = "play"
- End Sub
-
- Sub PressMe_MouseUp (Button As Integer, Shift As Integer, X As Single, Y As Single)
- Movie.Command = "stop"
- Movie.To = 0
- Movie.Command = "seek"
- PressMe.Refresh
- End Sub
-
- Sub VideoButton_Click ()
- HotVideo.DataName = "avi\earth.ivd"
- HotVideo.FileName = "avi\earth.avi"
- HotVideo.Visible = True
- HotVideo.Play = True
- End Sub
-
-